We need the node without an offset applied.
Fixes the rose picture being offset in tests/testoverlay
GtkSnapshot *child_snapshot;
child_snapshot = gtk_snapshot_new ();
- gtk_snapshot_offset (child_snapshot, main_alloc.x, main_alloc.y);
gtk_widget_snapshot (main_widget, child_snapshot);
- gtk_snapshot_offset (child_snapshot, -main_alloc.x, -main_alloc.y);
main_widget_node = gtk_snapshot_free_to_node (child_snapshot);
}